home *** CD-ROM | disk | FTP | other *** search
- Form1
- Form1
- Form1
- Form_Clickz
- VqGetVarString
- Strng
- Handle
- PageW
- VqVarLenStr@
- VqVarGetSize
- VqError
- VqGetString
- VqPutVarString
- VqPutString
- Form_Load
- VqFixLenStr
- VqEraseString
- Elements
- BufSize
- StrSizeb
- comment
- initialization
- FormLoadError
- VqGetVarString
- Support function to get string from variable length
- VqString array.
- VqPutVarString
- Support function to store string in variable length
- VqString array.
- - Need to append Chr$(0) to end of string.
- Form_Load
- - Remove the message box call below and insert your own code.
- This is a quick start shell for VqString array functions."
- See the Form Load procedure for example code."
- VqStrings"
- * Initialize variable length VqString array
- - To use variable length VqString array, set the valuesn
- - of Elements And BufSize And un-comment the
- - initialization call below.
- x& = VqVarLenStr(Test, 1, Elements, Bufsize)
- * Initialize fixed length VqString array
- - To use fixed length VqString array, set the values
- - of Elements And BufSize And un-comment the
- - initialization call below.
- x& = VqFixLenStr(Test, 1, Elements, StrSize)
- - Example call to store a string in a variable length VqString array.
- If VqPutVarString(Test, Handle%, Element&) < 0 Then Error Abs(VqError)
- - Example call to get a string from a variable length VqString array.
- If VqGetVarString(Test, Handle%, Element&) < 0 Then Error Abs(VqError)
- - Example call to store a string in a fixed length VqString array.
- If VqFixLenStr(Test, Handle%, Element&, VqPutString) < 0 Then Error Abs(VqError)
- - Example call to get a string from a fixed length VqString array.
- If VqFixLenStr(Test, Handle%, Element&, VqGetString) < 0 Then Error Abs(VqError)
- * Erase VqString arrays
- - After using VqString array, un-comment the appropriate
- - erase call.
- x& = VqFixLenStr(Test, 1, 0, VqEraseString)t
- x& = VqVarLenStr(Test, 1, 0, VqEraseString)t
- Error"
-